INSERT INTO "Settings" ("Name", "Active", "Type", "Value", "ImageUrl", "Description", "Numeral") VALUES('Sales Bill Discount Display', true, 'Pharmacy', NULL, NULL, 'This will be used to show/hide discount option in Pharmacy', NULL);

--------------------------


alter table "PharmacyStock" add column "IsIGST" boolean default false,add column "IsSGST" boolean default false;
------

alter table "PharmacyRetailStock" add column "IsIGST" boolean default false,add column "IsSGST" boolean default false;


update "PharmacyStock" set "IsSGST" = true where "IsIGST" = false ;

update "PharmacyRetailStock" set "IsSGST" = true where "IsIGST" = false ;


--------------------